home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 493.lha / SmallIFFParseLibrary / sources / makefile < prev    next >
Encoding:
Makefile  |  1991-04-06  |  602 b   |  24 lines

  1. CFLAGS = -ps -bs -safmprs -hi prep16.p
  2. LIBC = -ps -safmprs -hi prep16.p
  3. #LIBC = -safmprs -hi prep16.p -dSAFE_OPEN
  4. LFLAGS = -g +q
  5.  
  6. #>>>>>>>>>>>>>>>>> Small-iffparse library <<<<<<<<<<<<<<
  7. LIBOBJ = libsup.o handleiff.o
  8. ASMOBJ = libstart.o 
  9.  
  10. all: iffparse.library lsclip pasteclip cutclip
  11.     Echo "Done!"
  12.     
  13. iffparse.library: $(LIBOBJ) $(ASMOBJ)
  14.     ln $(LFLAGS) -o iffparse.library $(LIBOBJ) $(ASMOBJ) -lc16
  15.  
  16. lsclip: lsclip.o
  17.     ln $(LFLAGS) -o lsclip lsclip.o -lc16
  18.  
  19. pasteclip: pasteclip.o
  20.     ln $(LFLAGS) -o pasteclip pasteclip.o -lc16
  21.  
  22. cutclip: cutclip.o
  23.     ln $(LFLAGS) -o cutclip cutclip.o -lc16
  24.